Package excel.newworkbook

Source Code of excel.newworkbook.AsposeNewWorkbook

package excel.newworkbook;

import com.aspose.cells.FileFormatType;
import com.aspose.cells.Workbook;

public class AsposeNewWorkbook
{
  public static void main(String[] args) throws Exception
  {
    Workbook workbook = new Workbook(); // Creating a Workbook object

    //Workbooks can be saved in many formats
    workbook.save("data/newWorkBook_Aspose.xlsx", FileFormatType.XLSX);

    System.out.println("Worksheets are saved successfully."); // Print Message
  }
}
TOP

Related Classes of excel.newworkbook.AsposeNewWorkbook

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.